Conversation
|
@louiellan Thanks for the PR! Can you please rebase? |
46be19d to
20a16e8
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #59478 +/- ##
==========================================
- Coverage 88.53% 88.53% -0.01%
==========================================
Files 704 704
Lines 208759 208760 +1
Branches 40277 40272 -5
==========================================
- Hits 184825 184819 -6
- Misses 15934 15943 +9
+ Partials 8000 7998 -2
🚀 New features to boost your workflow:
|
Failed to start CI⚠ Commits were pushed since the last approving review: ⚠ - lib: support glob on `--watch-path` ✘ Refusing to run CI on potentially unsafe PRhttps://github.com/nodejs/node/actions/runs/20876405993 |
|
I think this might be the reason why the CI is failing, I changed this when I rebased, my bad node/test/sequential/test-watch-mode.mjs Lines 136 to 137 in 20a16e8 |
Commit Queue failed- Loading data for nodejs/node/pull/59478 ✔ Done loading data for nodejs/node/pull/59478 ----------------------------------- PR info ------------------------------------ Title lib: support glob on `--watch-path` (#59478) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch louiellan:watch-path-glob -> nodejs:main Labels fs, semver-major, author ready, needs-ci Commits 1 - lib: support glob on `--watch-path` Committers 1 - louiellan <[email protected]> PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Aviv Keller <[email protected]> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Aviv Keller <[email protected]> -------------------------------------------------------------------------------- ℹ This PR was created on Fri, 15 Aug 2025 04:43:46 GMT ✔ Approvals: 2 ✔ - Moshe Atlow (@MoLow): https://github.com/nodejs/node/pull/59478#pullrequestreview-3687694822 ✔ - Aviv Keller (@avivkeller): https://github.com/nodejs/node/pull/59478#pullrequestreview-3602246900 ✘ semver-major requires at least 2 TSC approvals ✔ Last GitHub CI successful ℹ Last Full PR CI on 2026-01-21T22:11:50Z: https://ci.nodejs.org/job/node-test-pull-request/70952/ - Querying data for job/node-test-pull-request/70952/ ✔ Build data downloaded ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/21242759144 |
|
Just added my email ;> |
Commit Queue failed- Loading data for nodejs/node/pull/59478 ✔ Done loading data for nodejs/node/pull/59478 ----------------------------------- PR info ------------------------------------ Title lib: support glob on `--watch-path` (#59478) Author Louie Llaneta <[email protected]> (@louiellan, first-time contributor) Branch louiellan:watch-path-glob -> nodejs:main Labels fs, semver-major, author ready, needs-ci Commits 1 - lib: support glob on `--watch-path` Committers 1 - louiellan <[email protected]> PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Aviv Keller <[email protected]> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Aviv Keller <[email protected]> -------------------------------------------------------------------------------- ℹ This PR was created on Fri, 15 Aug 2025 04:43:46 GMT ✔ Approvals: 2 ✔ - Moshe Atlow (@MoLow): https://github.com/nodejs/node/pull/59478#pullrequestreview-3687694822 ✔ - Aviv Keller (@avivkeller): https://github.com/nodejs/node/pull/59478#pullrequestreview-3602246900 ✘ semver-major requires at least 2 TSC approvals ✔ Last GitHub CI successful ℹ Last Full PR CI on 2026-01-22T09:17:00Z: https://ci.nodejs.org/job/node-test-pull-request/70952/ - Querying data for job/node-test-pull-request/70952/ ✔ Build data downloaded ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/21248171608 |
|
@nodejs/tsc please take a look and approve as this is semver major |
RafaelGSS
left a comment
There was a problem hiding this comment.
We should include a permission model test for glob when using --permission and --watch-path
|
So I was creating the permission model tests, and came across this bug (I guess), might have to resolve this first |
Closes #45182
Closes #59345
This allows glob patterns to be included in the
--watch-pathoption but it does introduce breaking change since there might be instances where developers might have used glob characters when using--watch-path(e.g.,file[1].js)An alternative, non-breaking change would be to add a cli option
--watch-patternin which the PR is here #59345